Action=“somename” in

You are using a form with a modelAttribute of "user", but putting the modelAttribute in as "userLogin". If you change either one so they are consistent, it should work.

I have this code in UserLoginController. Public String get(final ModelMap model) { User userForm = new User(); model. AddAttribute("userLogin", userForm); return "form"; } how does this have anything to do with invoking the model attribute.

Thanks – djoshi Sep 16 at 15:59 Spring is attempting to create your form tags. You've told it there is a model object named user where it can get that data, but the data is not there when it attempts to render the tags. What is there is a model object named userLogin.

Your post code is never getting called, because you aren't able to load the first page. If you change this line model. AddAttribute("userLogin", userForm); to model.

AddAttribute("user", userForm); it should work. – dlawrence Sep 16 at 17:32 That didn't help still getting same error. – djoshi Sep 19 at 14:52.

I figured the main issue . Even though I had the BindingResult and Model and attribute, the signature order was not correct. Spring would recgnize this as error as per reference link static.springsource.org/spring/docs/curr... Example 15.1.Invalid ordering of BindingResult and @ModelAttribute @RequestMapping(method = RequestMethod.

POST) public String processSubmit(@ModelAttribute("pet") Pet pet, Model model, BindingResult result) { … } Note, that there is a Model parameter in between Pet and BindingResult. To get this working you have to reorder the parameters as follows: @RequestMapping(method = RequestMethod. POST) public String processSubmit(@ModelAttribute("pet") Pet pet, BindingResult result, Model model) { … } I was not having the correct order of signatures which caused me the issue of BindingResult not recognized.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.